home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 1.iso / pc / Mesolore1 / data / Debates.dir / 00018_Script_18 < prev    next >
Text File  |  2001-04-13  |  331b  |  15 lines

  1. Global gDebateAudio
  2. on mouseDown
  3.   btnDown
  4. end
  5. on MouseUp
  6.   gDebateAudio = not gDebateAudio
  7.   if gDebateAudio then
  8.     set the member of sprite 6 = "check_x"
  9.     sprite(8).visible = TRUE
  10.   else
  11.     set the movierate of sprite 8 = 0
  12.     sprite(8).visible = FALSE
  13.     set the member of sprite 6 = "check_n"
  14.   end if
  15. end